Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | import React, { Component } from "react" |
||
8 | |||
9 | class GamesPage extends Component { |
||
10 | render() { |
||
11 | return ( |
||
12 | <Layout> |
||
13 | <SEO |
||
14 | lang="nl-BE" |
||
15 | title="Matchoverzicht voorbereiding" |
||
16 | description="Overzicht van alle gespeelde en toekomstige wedstrijden tijdens de voorbereiding van het nieuwe seizoen." |
||
17 | path={this.props.location.pathname} |
||
18 | /> |
||
19 | <div className={`games__template`}> |
||
20 | <MatchesOverview /> |
||
21 | </div> |
||
22 | </Layout> |
||
23 | ) |
||
28 |